From: cl349@firebug.cl.cam.ac.uk Date: Mon, 8 May 2006 15:41:22 +0000 (+0100) Subject: Make Xen version numbers more flexible. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16108^2~2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=0c78843ebb3b0df7d147555b99e539a53f7dfb75;p=xen.git Make Xen version numbers more flexible. Signed-off-by: Christian Limpach --- diff --git a/xen/Makefile b/xen/Makefile index a349fd43de..277ee87603 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -1,9 +1,10 @@ # This is the correct place to edit the build version. # All other places this is stored (eg. compile.h) should be autogenerated. -export XEN_VERSION := 3 -export XEN_SUBVERSION := 0 -export XEN_EXTRAVERSION := -unstable -export XEN_FULLVERSION := $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION) +export XEN_VERSION = 3 +export XEN_SUBVERSION = 0 +export XEN_EXTRAVERSION ?= -unstable +export XEN_FULLVERSION = $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION) +-include xen-version export BASEDIR := $(CURDIR)